how to hide tkinter window

20

root = tk.Tk()
# Hide it with .withdraw
root.withdraw()
# To reveal it again:
root.deiconify()

Comments

Submit
0 Comments